home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / contrib / f2c95201 / src / libf77 / r_nint.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-04  |  202 b   |  15 lines

  1. #include "f2c.h"
  2.  
  3. #ifdef KR_headers
  4. double floor();
  5. double r_nint(x) real *x;
  6. #else
  7. #undef abs
  8. #include "math.h"
  9. double r_nint(real *x)
  10. #endif
  11. {
  12. return( (*x)>=0 ?
  13.     floor(*x + .5) : -floor(.5 - *x) );
  14. }
  15.